? tr-head.diff
? docs/tech/html/Makefile
? docs/tech/html/Makefile.in
? libtcaudio/.deps
? libtcaudio/.libs
? libtcaudio/Makefile
? libtcaudio/Makefile.in
? libtcaudio/libtcaudio.la
? libtcaudio/tcaudio.lo
? libtcvideo/.deps
? libtcvideo/.libs
? libtcvideo/Makefile
? libtcvideo/Makefile.in
? libtcvideo/libtcvideo.la
? libtcvideo/tcvideo.lo
? libtcvideo/zoom.lo
Index: configure.in
===================================================================
RCS file: /cvstc/transcode/configure.in,v
retrieving revision 1.206
diff -u -r1.206 configure.in
--- configure.in	7 May 2007 18:46:17 -0000	1.206
+++ configure.in	10 May 2007 22:22:24 -0000
@@ -61,20 +61,24 @@
   freebsd*|openbsd*|netbsd*|bsdi*|darwin*|rhapsody*)
     is_bsd=yes
     AC_DEFINE([OS_BSD], 1, [Define if your system is modern BSD])
-    ;;
-  darwin*)
-    is_osx=yes
-    CFLAGS="${CFLAGS} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"
-    #LDFLAGS="${LDFLAGS} -all_load"
-
-    AC_DEFINE([OS_DARWIN], 1, [Define if this is a Darwin / MacOS X system.])
-    AC_DEFINE([BROKEN_PTHREADS], 1, [Define if you have weird pthreads.])
-
-    # Include Fink in compile and link if present
-    if test -d /sw; then
-      CPPFLAGS="${CPPFLAGS} -I/sw/include"
-      LDFLAGS="${LDFLAGS} -L/sw/lib"
-    fi
+  
+  # darwin is a subcase of BSD
+  case "${target_os}" in
+    darwin*)
+      is_osx=yes
+      CFLAGS="${CFLAGS} -no-cpp-precomp -D_INTL_REDIRECT_MACROS"
+      #LDFLAGS="${LDFLAGS} -all_load"
+
+      AC_DEFINE([OS_DARWIN], 1, [Define if this is a Darwin / MacOS X system.])
+      AC_DEFINE([BROKEN_PTHREADS], 1, [Define if you have weird pthreads.])
+
+      # Include Fink in compile and link if present
+      if test -d /sw; then
+        CPPFLAGS="${CPPFLAGS} -I/sw/include"
+        LDFLAGS="${LDFLAGS} -L/sw/lib"
+      fi
+      ;;
+  esac
     ;;
 esac
 AM_CONDITIONAL([OS_LINUX], test x"$is_linux" = x"yes")
