Changeset 453fe58a0617ac1d0c72e7f24b50b97ed9c0e256

Show
Ignore:
Timestamp:
03/17/03 17:59:47 (5 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1047920387 +0000
git-parent:

[78ea76bcf25b3546dc1de2de42877d469ec169bd]

git-author:
Sam Hocevar <sam@videolan.org> 1047920387 +0000
Message:
  • ./autotools/: moved some autotools executables to this subdirectory to
    reduce cluttering of the root directory.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • .cvsignore

    r2089165 r453fe58  
    1414config.rpath 
    1515config.status 
    16 config.guess 
    17 config.sub 
    1816confdefs.h 
    1917conftest.cc 
     
    2523stamp-h* 
    2624aclocal.m4 
    27 install-sh 
    28 missing 
    29 mkinstalldirs 
    30 compile 
    31 depcomp 
    3225vlc-debug.* 
    3326vlc-log.* 
  • Makefile.am

    ra5abccd r453fe58  
    77# which have makefiles with distribution information. 
    88SUBDIRS = po intl m4 share 
    9 DIST_SUBDIRS = $(SUBDIRS) modules src debian doc ipkg lib 
     9DIST_SUBDIRS = $(SUBDIRS) modules src debian doc ipkg lib autotools 
    1010 
    1111EXTRA_DIST = HACKING MAINTAINERS src/extras/COPYING \ 
  • bootstrap

    r0eaf631 r453fe58  
    22 
    33##  bootstrap file for the VLC media player 
    4 ##  $Id: bootstrap,v 1.44 2003/03/12 04:16:02 sam Exp $ 
     4##  $Id: bootstrap,v 1.45 2003/03/17 16:59:46 sam Exp $ 
    55## 
    66##  Authors: Samuel Hocevar <sam@zoy.org> 
     
    174174### 
    175175set -x 
    176 rm -f aclocal.m4 m4/oldgettext.m4 configure config.guess config.log config.sub ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh ABOUT-NLS 
     176 
     177# remove autotools cruft 
     178rm -f aclocal.m4 configure config.log 
     179# remove old autotools extra cruft 
     180rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh 
     181# remove new autotools extra cruft 
     182(cd autotools && rm -f config.guess config.sub missing mkinstalldirs compile depcomp install-sh) 
     183# remove libtool cruft 
     184rm -f ltmain.sh libtool ltconfig 
     185# remove gettext cruft 
     186rm -f m4/oldgettext.m4 ABOUT-NLS 
    177187rm -Rf intl 
    178188 
  • configure.ac.in

    rd8af194 r453fe58  
    88AC_PREREQ(2.50) 
    99AC_CONFIG_SRCDIR(src/libvlc.c) 
     10AC_CONFIG_AUX_DIR(autotools) 
    1011AC_CANONICAL_SYSTEM 
    1112 
     
    496497NEED_GTK_MAIN=no 
    497498NEED_GNOME_MAIN=no 
     499NEED_GTK2_MAIN=no 
     500NEED_GNOME2_MAIN=no 
    498501 
    499502dnl build the qte plugin ? 
     
    22812284 
    22822285dnl 
     2286dnl  Gtk+2 module 
     2287dnl 
     2288AC_ARG_ENABLE(gtk2, 
     2289  [  --enable-gtk2           Gtk2 support (default disabled)]) 
     2290if test "x${enable_gtk2}" = "xyes" 
     2291then 
     2292  PKG_CHECK_MODULES(GTK2, [gtk+-2.0 >= 2.0.0, gthread-2.0]) 
     2293  CFLAGS_gtk2="${CFLAGS_gtk2} ${GTK2_CFLAGS}" 
     2294  LDFLAGS_gtk2="${LDFLAGS_gtk2} ${GTK2_LIBS}" 
     2295  PLUGINS="${PLUGINS} gtk2" 
     2296  if test "x${SYS}" != "xmingw32"; then 
     2297    NEED_GTK2_MAIN=yes 
     2298  fi 
     2299fi 
     2300 
     2301dnl 
    22832302dnl  Familiar module uses Gtk+ library 
    22842303dnl 
     
    23952414    CPPFLAGS="${CPPFLAGS_save}" 
    23962415  fi]) 
     2416 
     2417dnl 
     2418dnl  Gnome2 module 
     2419dnl 
     2420AC_ARG_ENABLE(gnome2, 
     2421  [  --enable-gnome2         Gnome2 support (default disabled)]) 
     2422if test "x${enable_gnome2}" = "xyes" 
     2423then 
     2424  PKG_CHECK_MODULES(GNOME2, [libgnomeui-2.0]) 
     2425  CFLAGS_gnome2="${CFLAGS_gnome2} ${GNOME2_CFLAGS}" 
     2426  LDFLAGS_gnome2="${LDFLAGS_gnome2} ${GNOME2_LIBS}" 
     2427  PLUGINS="${PLUGINS} gnome2" 
     2428  if test "x${SYS}" != "xmingw32"; then 
     2429    NEED_GNOME2_MAIN=yes 
     2430  fi 
     2431fi 
    23972432 
    23982433dnl 
     
    27702805    PLUGINS="${PLUGINS} gtk_main" 
    27712806    CFLAGS_gtk="${CFLAGS_gtk} -DNEED_GTK_MAIN" 
    2772    CFLAGS_familiar="${CFLAGS_familiar} -DNEED_GTK_MAIN" 
     2807    CFLAGS_familiar="${CFLAGS_familiar} -DNEED_GTK_MAIN" 
    27732808    CFLAGS_gtk_main="${CFLAGS_gtk_main} ${CFLAGS_gtk} ${CFLAGS_familiar}" 
    27742809    LDFLAGS_gtk_main="${LDFLAGS_gtk_main} ${LDFLAGS_gtk} ${LDFLAGS_familiar}" 
     
    27802815    CFLAGS_gnome_main="${CFLAGS_gnome_main} ${CFLAGS_gtk} ${CFLAGS_familiar} ${CFLAGS_gnome}" 
    27812816    LDFLAGS_gnome_main="${LDFLAGS_gnome_main} ${LDFLAGS_gtk} ${LDFLAGS_familiar} ${LDFLAGS_gnome}" 
     2817fi 
     2818 
     2819if test "x${NEED_GTK2_MAIN}" != "xno" 
     2820then 
     2821    PLUGINS="${PLUGINS} gtk2_main" 
     2822    CFLAGS_gtk2="${CFLAGS_gtk2} -DNEED_GTK2_MAIN" 
     2823    CFLAGS_gtk2_main="${CFLAGS_gtk2_main} ${CFLAGS_gtk2}" 
     2824    LDFLAGS_gtk2_main="${LDFLAGS_gtk2_main} ${LDFLAGS_gtk2}" 
     2825fi 
     2826 
     2827if test "x${NEED_GNOME2_MAIN}" != "xno" 
     2828then 
     2829    PLUGINS="${PLUGINS} gnome2_main" 
     2830    CFLAGS_gnome2_main="${CFLAGS_gnome2_main} ${CFLAGS_gtk2} ${CFLAGS_gnome2}" 
     2831    LDFLAGS_gnome2_main="${LDFLAGS_gnome2_main} ${LDFLAGS_gtk2} ${LDFLAGS_gnome2}" 
    27822832fi 
    27832833 
     
    29212971AC_OUTPUT([ 
    29222972  Makefile 
     2973  autotools/Makefile 
    29232974  debian/Makefile 
    29242975  doc/Makefile 
  • toolbox

    ra5abccd r453fe58  
    22 
    33##  toolbox for the VLC media player 
    4 ##  $Id: toolbox,v 1.14 2003/03/12 05:12:05 sam Exp $ 
     4##  $Id: toolbox,v 1.15 2003/03/17 16:59:46 sam Exp $ 
    55## 
    66##  Authors: Samuel Hocevar <sam@zoy.org> 
     
    4343###  argument check 
    4444### 
    45 do_changelog=no 
    46 do_po=no 
    47 do_vc=no 
    48 do_includes=no 
    49 do_glade=no 
    5045 
    5146if test "$1" = "" 
     
    5651case "$1" in 
    5752  --update-changelog) 
    58     do_changelog=yes 
     53    action=changelog 
    5954    ;; 
    6055  --update-vc) 
    61     do_vc=yes 
     56    action=vc 
    6257    ;; 
    6358  --update-po) 
    64     do_po=yes 
     59    action=po 
    6560    ;; 
    6661  --update-includes) 
    67     do_includes=yes 
     62    action=includes 
    6863    ;; 
    6964  --update-glade|--fix-glade) 
    70     do_glade=yes 
     65    action=glade 
    7166    ;; 
    7267  --help) 
     
    8378##  Update the CVS changelog 
    8479## 
    85 if test "$do_changelog" = "yes
     80if test "${action}" = "changelog
    8681then 
    8782  cvs2cl --help >/dev/null 2>&1 || exit 1 
     
    9691##  Update the MSVC project files 
    9792## 
    98 if test "$do_vc" = "yes
     93if test "${action}" = "vc
    9994then 
    10095  echo "generating Visual Studio files..." 
     
    313308##  Update the potfiles because no one ever does it 
    314309## 
    315 if test "$do_po" = "yes
     310if test "${action}" = "po
    316311then 
    317312  # create a fake file containing win32 strings 
     
    337332##  Create include files 
    338333## 
    339 if test "$do_includes" = "yes" 
     334if test "${action}" = "includes" 
    340335then 
    341336  set -x 
     
    411406##  Fix glade-generated files 
    412407## 
    413 if test "$do_glade" = "yes
     408if test "${action}" = "glade
    414409then 
    415410  for file in modules/gui/gtk/gnome.glade modules/gui/gtk/gtk.glade modules/gui/familiar/familiar.glade