Namazu-devel-ja(旧)


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

check the configure option --with-included-gettext on Solaris 2.x



ふとおもいついたので。「Solaris では --with-included-gettext しろ」
という FAQ のために、configure.in で以下のような感じでチェックして
オプションを付けてなかったらエラーメッセージを出して止まるようにし
てみるというのはどうでしょうか。>野首さん、安部さん

なんでもかんでも --with-included-gettext してしまっていいものかど
うかわからないのですが、別に構わないようならcommitしておいていただ
けるとありがたいです。>野首さん

# エラーメッセージなどは適当にいじったほうがいいとおもいますが、
# そのへんはおまかせします。
--
馬場  肇 ( Hajime BABA )            E-mail: baba@xxxxxxxxxxxxxxxxxxxxxx
京都大学理学部宇宙物理学教室 博士後期課程
--


Index: configure.in
===================================================================
RCS file: /storage/cvsroot/namazu/configure.in,v
retrieving revision 1.131
diff -u -u -r1.131 configure.in
--- configure.in        2000/09/19 09:03:31     1.131
+++ configure.in        2000/12/25 13:23:07
@@ -85,6 +85,23 @@
     LDFLAGS="$LDFLAGS -Zmtd -Zcrtdll -Zsysv-signals -Zbin-files"
 fi
 
+dnl check the configure option --with-included-gettext on Solaris 2.x
+if test "${with_included_gettext+set}" != set; then
+  os="`echo $host_os | cut -d. -f1`"
+  dnl echo "debug message: os=$os"
+  if test "$os" = "solaris2"; then
+   AC_MSG_ERROR([
+
+You need to attach --with-included-gettext option when you run
+configure on Solaris 2.x systems.  Please try
+
+  % ./configure --with-included-gettext
+
+instead of ./configure with no option.
+])
+  fi
+fi
+
 dnl *
 dnl * I18N
 dnl *