configure.ac (36a2d835) configure.ac (073e6ddb)
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 822 unchanged lines hidden (view full) ---

831 Usage: --with-dict=ENGB,ENUS,ITIT
832],,)
833AC_ARG_WITH(intro-bitmaps,
834[ --with-intro-bitmaps Prefer the specified intro bitmaps over the
835 the default one. Can be more than one (separated by
836 commas), the order means priority of fallback if the
837 first does not exist (in the installed tree).
838
1dnl * *************************************************************
2dnl *
3dnl * Licensed to the Apache Software Foundation (ASF) under one
4dnl * or more contributor license agreements. See the NOTICE file
5dnl * distributed with this work for additional information
6dnl * regarding copyright ownership. The ASF licenses this file
7dnl * to you under the Apache License, Version 2.0 (the
8dnl * "License"); you may not use this file except in compliance

--- 822 unchanged lines hidden (view full) ---

831 Usage: --with-dict=ENGB,ENUS,ITIT
832],,)
833AC_ARG_WITH(intro-bitmaps,
834[ --with-intro-bitmaps Prefer the specified intro bitmaps over the
835 the default one. Can be more than one (separated by
836 commas), the order means priority of fallback if the
837 first does not exist (in the installed tree).
838
839 Usage: --with-intro-bitmaps=/path/my_ooo_intro.bmp
839 Usage: --with-intro-bitmaps=/path/my_ooo_intro.png
840],,)
841AC_ARG_WITH(about-bitmaps,
842[ --with-about-bitmaps Similarly to --with-intro-bitmaps, this allows
843 specification of bitmaps for the About box.
844
840],,)
841AC_ARG_WITH(about-bitmaps,
842[ --with-about-bitmaps Similarly to --with-intro-bitmaps, this allows
843 specification of bitmaps for the About box.
844
845 Usage: --with-about-bitmaps=/path/my_ooo_about.bmp
845 Usage: --with-about-bitmaps=/path/my_ooo_about.png
846],,)
847AC_ARG_WITH(vendor,
848[ --with-vendor Set vendor of the build.
849
850 Usage: --with-vendor="John the Builder"
851],,)
852AC_ARG_WITH(unix-wrapper,
853[ --with-unix-wrapper Redefines the name of the UNIX wrapper that will be used

--- 6497 unchanged lines hidden (view full) ---

7351AC_MSG_CHECKING([for additional 'intro' bitmaps])
7352INTRO_BITMAPS=
7353if test -z "$with_intro_bitmaps" -o "$with_intro_bitmaps" = "no" ; then
7354 INTRO_BITMAPS=
7355 AC_MSG_RESULT([none])
7356else
7357 for bitmap in `echo $with_intro_bitmaps | tr ',' ' '` ; do
7358 case "$bitmap" in
846],,)
847AC_ARG_WITH(vendor,
848[ --with-vendor Set vendor of the build.
849
850 Usage: --with-vendor="John the Builder"
851],,)
852AC_ARG_WITH(unix-wrapper,
853[ --with-unix-wrapper Redefines the name of the UNIX wrapper that will be used

--- 6497 unchanged lines hidden (view full) ---

7351AC_MSG_CHECKING([for additional 'intro' bitmaps])
7352INTRO_BITMAPS=
7353if test -z "$with_intro_bitmaps" -o "$with_intro_bitmaps" = "no" ; then
7354 INTRO_BITMAPS=
7355 AC_MSG_RESULT([none])
7356else
7357 for bitmap in `echo $with_intro_bitmaps | tr ',' ' '` ; do
7358 case "$bitmap" in
7359 *.bmp) ;;
7360 *) bitmap= ; AC_MSG_WARN([Intro bitmaps should be .bmp files!]) ;;
7359 *.png) ;;
7360 *) bitmap= ; AC_MSG_WARN([Intro bitmaps should be .png files!]) ;;
7361 esac
7362 if test -n "$bitmap" ; then
7363 INTRO_BITMAPS="$INTRO_BITMAPS $bitmap"
7364 fi
7365 done
7366 AC_MSG_RESULT([$INTRO_BITMAPS])
7367fi
7368AC_SUBST(INTRO_BITMAPS)
7369
7370AC_MSG_CHECKING([for additional 'about' bitmaps])
7371ABOUT_BITMAPS=
7372if test -z "$with_about_bitmaps" -o "$with_about_bitmaps" = "no" ; then
7373 ABOUT_BITMAPS=
7374 AC_MSG_RESULT([none])
7375else
7376 for bitmap in `echo $with_about_bitmaps | tr ',' ' '` ; do
7377 case "$bitmap" in
7361 esac
7362 if test -n "$bitmap" ; then
7363 INTRO_BITMAPS="$INTRO_BITMAPS $bitmap"
7364 fi
7365 done
7366 AC_MSG_RESULT([$INTRO_BITMAPS])
7367fi
7368AC_SUBST(INTRO_BITMAPS)
7369
7370AC_MSG_CHECKING([for additional 'about' bitmaps])
7371ABOUT_BITMAPS=
7372if test -z "$with_about_bitmaps" -o "$with_about_bitmaps" = "no" ; then
7373 ABOUT_BITMAPS=
7374 AC_MSG_RESULT([none])
7375else
7376 for bitmap in `echo $with_about_bitmaps | tr ',' ' '` ; do
7377 case "$bitmap" in
7378 *.bmp) ;;
7379 *) bitmap= ; AC_MSG_WARN([About bitmaps should be .bmp files!]) ;;
7378 *.png) ;;
7379 *) bitmap= ; AC_MSG_WARN([About bitmaps should be .png files!]) ;;
7380 esac
7381 if test -n "$bitmap" ; then
7382 ABOUT_BITMAPS="$ABOUT_BITMAPS $bitmap"
7383 fi
7384 done
7385 AC_MSG_RESULT([$ABOUT_BITMAPS])
7386fi
7387AC_SUBST(ABOUT_BITMAPS)

--- 133 unchanged lines hidden ---
7380 esac
7381 if test -n "$bitmap" ; then
7382 ABOUT_BITMAPS="$ABOUT_BITMAPS $bitmap"
7383 fi
7384 done
7385 AC_MSG_RESULT([$ABOUT_BITMAPS])
7386fi
7387AC_SUBST(ABOUT_BITMAPS)

--- 133 unchanged lines hidden ---