]> git.sesse.net Git - vlc/blobdiff - vlc-config.in.in
OSS: fix Makefile typo
[vlc] / vlc-config.in.in
index 0673b74d47e8d9b223582c72034e1c7ed8747101..502b61f4b4a2b2ae5a4a303388ff60ef384fbffe 100644 (file)
@@ -8,7 +8,6 @@ datarootdir="@datarootdir@"
 optim="@optim@"
 
 plugins="@PLUGINS@ "
-builtins="@BUILTINS@ "
 
 cppflags=""
 cflags=""
@@ -37,8 +36,6 @@ Options:
         [--objcflags]             output Objective C compilation flags
 Modules:
         vlc                       the main VLC object
-        plugin                    flags for plugin modules
-        builtin                   flags for built-in modules
         MODULE                    any available module (dummy, gtk, avi, etc.)
         libs                      flags for external libs
 BLAH
@@ -67,11 +64,6 @@ includes="${includes}"
 cppflags="${includes}"
 module=""
 
-#
-#  On Linux and Solaris, activate 64-bit off_t (by default under BSD)
-#
-cppflags="${cppflags} -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 -D_REENTRANT -D_THREAD_SAFE"
-
 #
 #  Various additional defines
 #
@@ -153,15 +145,9 @@ while test $# -gt 0; do
       usage 1 1>&1
       ;;
     libvlccore)
-      cppflags="${cppflags} -D__LIBVLC__ -I${top_builddir}src/misc"
       ;;
     plugin)
       echo_plugin=yes
-      cppflags="${cppflags} -D__LIBVLC__ -D__PLUGIN__"
-      ;;
-    builtin)
-      echo_builtin=yes
-      cppflags="${cppflags} -D__LIBVLC__ -D__BUILTIN__"
       ;;
     *)
       module="$tgt"
@@ -189,10 +175,6 @@ if test "${echo_list}" = yes; then
     echo "${plugins}"
     printf '\n'
   fi
-  if test "${echo_builtin}" = yes; then
-    echo "${builtins}"
-    printf '\n'
-  fi
   exit 0
 fi