diff options
author | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-12 15:54:55 +0000 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2004-04-12 15:54:55 +0000 |
commit | 5c000ea5a2f47d3df421e7bf3a03216e0790c246 (patch) | |
tree | 7dda823abfccce734b284c0a2ff34d216ce39b3c /sysutils/hourglass/files/patch-configure | |
parent | Fix gdm themes installation. Our chown(8) doesn't likes . as (diff) |
Add hourglass 1.0.0, a real-time application useful to learn how
CPU scheduling works.
PR: 64635
Submitted by: Olivier Tharan
Approved by: pav (mentor).
Notes
Notes:
svn path=/head/; revision=106816
Diffstat (limited to 'sysutils/hourglass/files/patch-configure')
-rw-r--r-- | sysutils/hourglass/files/patch-configure | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sysutils/hourglass/files/patch-configure b/sysutils/hourglass/files/patch-configure new file mode 100644 index 000000000000..d1530314f6a6 --- /dev/null +++ b/sysutils/hourglass/files/patch-configure @@ -0,0 +1,31 @@ +--- configure.orig Thu Oct 9 20:19:54 2003 ++++ configure Mon Apr 12 16:14:58 2004 +@@ -3114,7 +3114,6 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpthread $LIBS" + cat >conftest.$ac_ext <<_ACEOF + #line $LINENO "configure" + /* confdefs.h. */ +@@ -3161,7 +3160,6 @@ + #define HAVE_LIBPTHREAD 1 + _ACEOF + +- LIBS="-lpthread $LIBS" + + fi + +@@ -3994,8 +3992,10 @@ + on_unix='yes' ; + on_windows='no' ;; + *freebsd*) +- LDFLAGS='-llthread -llgcc_r -L/usr/local/lib' ; +- CFLAGS='-D_THREAD_SAFE -I/usr/local/include/pthread/linuxthreads' ; ++ CFLAGS_sav=$CFLAGS ; ++ LDFLAGS_sav=$LDFLAGS ; ++ LDFLAGS="$LDFLAGS_sav -llthread -llgcc_r -L%LOCALBASE%/lib" ; ++ CFLAGS="$CFLAGS_sav -D_THREAD_SAFE -I%LOCALBASE%/include/pthread/linuxthreads" ; + on_unix='yes' ; + on_windows='no' ;; + *cygwin*) |