View | Details | Raw Unified | Return to issue 66426
Collapse All | Expand All

(-)config_office/configure.in (+83 lines)
Lines 533-538 AC_ARG_WITH(dict, Link Here
533
533
534
                          Usage: --with-dict=ENGB,ENUS,ITIT
534
                          Usage: --with-dict=ENGB,ENUS,ITIT
535
],,)
535
],,)
536
AC_ARG_WITH(intro-bitmaps,
537
[  --with-intro-bitmaps    Prefer the specified intro bitmaps over the
538
                          the default one.  Can be more than one (separated by
539
                          commas), the order means priority of fallback if the
540
                          first does not exist (in the installed tree).
541
542
                          Usage: --with-intro-bitmaps=/path/my_ooo_intro.bmp
543
],,)
544
AC_ARG_WITH(about-bitmaps,
545
[  --with-about-bitmaps    Similarly to --with-intro-bitmaps, this allows
546
                          specification of bitmaps for the About box.
547
548
                          Usage: --with-about-bitmaps=/path/my_ooo_about.bmp
549
],,)
550
AC_ARG_WITH(vendor,
551
[  --with-vendor           Set vendor of the build.
552
553
                          Usage: --with-vendor="John the Builder"
554
],,)
536
AC_ARG_WITH(asm-home,
555
AC_ARG_WITH(asm-home,
537
[  --with-asm-home         For Windows users, please supply the path for the
556
[  --with-asm-home         For Windows users, please supply the path for the
538
                          ml.exe assembler.
557
                          ml.exe assembler.
Lines 4898-4903 else Link Here
4898
fi
4906
fi
4899
AC_SUBST(WITH_DICT)
4907
AC_SUBST(WITH_DICT)
4900
4908
4909
AC_MSG_CHECKING([for additional 'intro' bitmaps])
4910
INTRO_BITMAPS=
4911
INTRO_BITMAP_NAMES=
4912
if test -z "$with_intro_bitmaps" -o "$with_intro_bitmaps" = "no" ; then
4913
   INTRO_BITMAPS=
4914
   AC_MSG_RESULT([none])
4915
else
4916
   for bitmap in `echo $with_intro_bitmaps | tr ',' ' '` ; do
4917
      intro=`basename $bitmap`
4918
      case "$bitmap" in
4919
         *.bmp) ;;
4920
         *)     bitmap= ; AC_MSG_WARN([Intro bitmaps should be .bmp files!]) ;;
4921
      esac
4922
      if test -n "$bitmap" ; then
4923
         INTRO_BITMAPS="$INTRO_BITMAPS $bitmap"
4924
         if test -z "$INTRO_BITMAP_NAMES" ; then
4925
            INTRO_BITMAP_NAMES="$intro"
4926
         else
4927
            INTRO_BITMAP_NAMES="$INTRO_BITMAP_NAMES,$intro"
4928
         fi
4929
      fi
4930
   done
4931
   AC_MSG_RESULT([$INTRO_BITMAP_NAMES])
4932
fi
4933
AC_SUBST(INTRO_BITMAPS)
4934
AC_SUBST(INTRO_BITMAP_NAMES)
4935
4936
AC_MSG_CHECKING([for additional 'about' bitmaps])
4937
ABOUT_BITMAPS=
4938
ABOUT_BITMAP_NAMES=
4939
if test -z "$with_about_bitmaps" -o "$with_about_bitmaps" = "no" ; then
4940
   ABOUT_BITMAPS=
4941
   AC_MSG_RESULT([none])
4942
else
4943
   for bitmap in `echo $with_about_bitmaps | tr ',' ' '` ; do
4944
      about=`basename $bitmap`
4945
      case "$bitmap" in
4946
         *.bmp) ;;
4947
         *)     bitmap= ; AC_MSG_WARN([About bitmaps should be .bmp files!]) ;;
4948
      esac
4949
      if test -n "$bitmap" ; then
4950
         ABOUT_BITMAPS="$ABOUT_BITMAPS $bitmap"
4951
         if test -z "$ABOUT_BITMAP_NAMES" ; then
4952
            ABOUT_BITMAP_NAMES="$about"
4953
         else
4954
            ABOUT_BITMAP_NAMES="$ABOUT_BITMAP_NAMES,$about"
4955
         fi
4956
      fi
4957
   done
4958
   AC_MSG_RESULT([$ABOUT_BITMAP_NAMES])
4959
fi
4960
AC_SUBST(ABOUT_BITMAPS)
4961
AC_SUBST(ABOUT_BITMAP_NAMES)
4962
4963
OOO_VENDOR=
4964
AC_MSG_CHECKING([for vendor])
4965
if test -z "$with_vendor" -o "$with_vendor" = "no" ; then
4966
   AC_MSG_RESULT([not set])
4967
else
4968
   OOO_VENDOR="$with_vendor"
4969
   AC_MSG_RESULT([$OOO_VENDOR])
4970
fi
4971
AC_SUBST(OOO_VENDOR)
4972
4901
AC_MSG_CHECKING([whether to statically link to Gtk])
4973
AC_MSG_CHECKING([whether to statically link to Gtk])
4902
if test -n "$enable_static_gtk" && test "$enable_static_gtk" != "no"; then
4974
if test -n "$enable_static_gtk" && test "$enable_static_gtk" != "no"; then
4903
   ENABLE_STATIC_GTK="TRUE"
4975
   ENABLE_STATIC_GTK="TRUE"
(-)config_office/set_soenv.in (+5 lines)
Lines 1439-1444 else Link Here
1439
}
1439
}
1440
# Languages
1440
# Languages
1441
ToFile( "WITH_LANG",         "@WITH_LANG@",      "e" );
1441
ToFile( "WITH_LANG",         "@WITH_LANG@",      "e" );
1442
ToFile( "INTRO_BITMAPS",     "@INTRO_BITMAPS@",  "e" );
1443
ToFile( "INTRO_BITMAP_NAMES","@INTRO_BITMAP_NAMES@","e" );
1444
ToFile( "ABOUT_BITMAPS",     "@ABOUT_BITMAPS@",  "e" );
1445
ToFile( "ABOUT_BITMAP_NAMES","@ABOUT_BITMAP_NAMES@","e" );
1446
ToFile( "OOO_VENDOR",        "@OOO_VENDOR@",     "e" );
1442
1447
1443
ToFile( "CALL_CDECL",        $CALL_CDECL,        "e" );
1448
ToFile( "CALL_CDECL",        $CALL_CDECL,        "e" );
1444
ToFile( "COMMON_OUTDIR",     $COMMON_OUTDIR,     "e" );
1449
ToFile( "COMMON_OUTDIR",     $COMMON_OUTDIR,     "e" );

Return to issue 66426