From w2linux @ lapis.plala.or.jp Sun Feb 6 23:48:31 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Sun, 06 Feb 2005 23:48:31 +0900 Subject: [Cxplorer-devel 00209] libcxp-0.1.1,cxplorer-1.9.20050206 Message-ID: <42062E3F.6070300@lapis.plala.or.jp>  赤星です。体調不良のため、集中して作業ができていませんが、新たにファイ ルをアップしました。 libcxp-0.1.1 http://sourceforge.jp/projects/cxplorer/files/?release_id=13302#13302 - ファイル名に.soがつかない問題の修正。 cxplorer-1.9.20050206 http://sourceforge.jp/projects/cxplorer/files/?release_id=13303#13303 - CxpDirViewの親をGObjectからGtkWidgetに変更。 - glibの国際化を導入(glib-gettextized)。それに伴うファイル構成の変更。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From w2linux @ lapis.plala.or.jp Sun Feb 6 23:57:54 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Sun, 06 Feb 2005 23:57:54 +0900 Subject: [Cxplorer-devel 00210] Re: libcxp-0.1.1,cxplorer-1.9.20050206 In-Reply-To: <42062E3F.6070300@lapis.plala.or.jp> References: <42062E3F.6070300@lapis.plala.or.jp> Message-ID: <42063072.9000905@lapis.plala.or.jp>  赤星です。 > cxplorer-1.9.20050206 cxp-dir-view.hでconfig.hをincludeしていないためにディレクトリ一覧のヘッ ダ部分が、翻訳されないようです。cvsでは、修正しましたが気になる方は、 src/cxp-dir-view.hの #include より前に #ifdef HAVE_CONFIG_H # include #endif を追加してください。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From w2linux @ lapis.plala.or.jp Mon Feb 7 23:24:35 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Mon, 07 Feb 2005 23:24:35 +0900 Subject: [Cxplorer-devel 00211] cxplorer-1.9.20050207 Message-ID: <42077A23.1000309@lapis.plala.or.jp>  赤星です。cxplorer-1.9.20050207をアップしました。 http://sourceforge.jp/projects/cxplorer/files/?release_id=13302#13302 [主な変更点] *ファイル一覧で行を選択した場合のプレビューの変更 - ディレクトリ: lsの実行結果 - テキストファイル: headの実行結果 - その他: odの実行結果 *ファイルタイプの判別にlibmagicを利用する様にした。 (実験的)  ToDoを片付けないで何をしているんだろうと言う感じですが…。  とりあえず、コマンドをハードコーディングしていますが、これらも設定で変 更できるようにする予定です。   -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From w2linux @ lapis.plala.or.jp Fri Feb 11 02:10:37 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Fri, 11 Feb 2005 02:10:37 +0900 Subject: [Cxplorer-devel 00212] cxplorer-1.9.20050211 Message-ID: <420B958D.8090401@lapis.plala.or.jp>  赤星です。Gtk+2ベースのファイラcxplorer-1.9.20050211をアップしました。 http://sourceforge.jp/projects/cxplorer/files/?release_id=13346#13346  未だ実用レベルには達していませんが、かなり方向性がはっきりしてきたので はと思います。 [cxplorer-1.9.20050207からの変更点] *ファイル一覧のペインとプレビューペインを単一の複合ウィジェットにした (cxp-right-pane.(h|c))。それに伴い不要になったファイルを削除した。 *プレビューに利用するコマンドを設定ファイルの書き換えで変更可能にした。 *ファイルを添付するメーラを設定ファイルの書き換えで変更可能にした。 [設定変更の一案]  このバージョンのcxplorerの設定ファイルは、~/.cxp/cxplorer/mainに作成さ れます。現在の所、以下の変数が存在します。将来的には設定用のダイアログを 実装する予定ですが、今のところエディタで編集する必要があります。 AttachCommand: メールの添付に利用するコマンド。(c-format) PreviewBinary: バイナリファイルのプレビューに利用するコマンド。 PreviewDir: ディレクトリのプレビューに利用するコマンド。 PreviewText: テキストファイルのプレビューに利用するコマンド。 ShowDotFile: .で始まるファイルを表示するかどうか。  初期値は以下の通りです。 PreviewDir=ls PreviewText=head --lines 20 ShowDotFile=0 AttachCommand=sylpheed --attach %s PreviewBinary=od -t x1z -A x -N 112 --width=16 # ただし、一度もファイル=>添付を実行していない場合は、AttachCommandが # 作成されません。(要修正)  メールの添付にMozillaを利用したい場合は、以下の様にします。 AttachCommand=mozilla --compose ""attachment='file://%s'""  テキストファイルのプレビューにはheadコマンドを利用している関係上、ロー ケルと異なる日本語コードで作成されたテキストファイルは、文字化けしたりプ レビューの表示に失敗する場合があります。一つの提案として以下のようなスク リプトを作成します。 #!/bin/sh nkf --euc $1 | head --lines 20 ~~~~~ローケルに合わせること。  これを/home/username/nkfhead.shなどとしてPreviewTextの値を以下の様にし ます。(当然、nkfがインストールされている必要有。) PreviewText=sh /home/username/nkfhead.sh # ファイルの位置は必ず絶対パスで記述します。~とかは使えません。 # また | によるパイプも不可です。 これにより、sjisだろうがutf-8だろうが冒頭20行が表示される様になります。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From thunderbird @ da.rmail.ne.jp Fri Feb 11 21:09:35 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Fri, 11 Feb 2005 21:09:35 +0900 Subject: [Cxplorer-devel 00213] Re: cxplorer-1.9.20050211 In-Reply-To: <420B958D.8090401@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> Message-ID: <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> chaliceです。お疲れ様です。なにもできないとはいわず、テストさせて頂きます。 つきましては、インストールの方法を今一度教えては頂けないでしょうか? 自分のブログのデータを整理したときに飛んでしまい、メールのログもSELinuxがらみで クリーンインストールしてしまい。のこっていません。 現在、MLのログを捜していますが、なかなか捜しきれません。 On Fri, 11 Feb 2005 02:10:37 +0900 Yasumichi Akahoshi wrote: >  赤星です。Gtk+2ベースのファイラcxplorer-1.9.20050211をアップしました。 > > http://sourceforge.jp/projects/cxplorer/files/?release_id=13346#13346 > >  未だ実用レベルには達していませんが、かなり方向性がはっきりしてきたので > はと思います。 > > [cxplorer-1.9.20050207からの変更点] > *ファイル一覧のペインとプレビューペインを単一の複合ウィジェットにした > (cxp-right-pane.(h|c))。それに伴い不要になったファイルを削除した。 > *プレビューに利用するコマンドを設定ファイルの書き換えで変更可能にした。 > *ファイルを添付するメーラを設定ファイルの書き換えで変更可能にした。 > # ただし、一度もファイル=>添付を実行していない場合は、AttachCommandが > # 作成されません。(要修正) > >  メールの添付にMozillaを利用したい場合は、以下の様にします。 > > AttachCommand=mozilla --compose ""attachment='file://%s'"" > >  テキストファイルのプレビューにはheadコマンドを利用している関係上、ロー > ケルと異なる日本語コードで作成されたテキストファイルは、文字化けしたりプ > レビューの表示に失敗する場合があります。一つの提案として以下のようなスク > リプトを作成します。 > > #!/bin/sh > > nkf --euc $1 | head --lines 20 > ~~~~~ローケルに合わせること。 > >  これを/home/username/nkfhead.shなどとしてPreviewTextの値を以下の様にし > ます。(当然、nkfがインストールされている必要有。) > > PreviewText=sh /home/username/nkfhead.sh > > # ファイルの位置は必ず絶対パスで記述します。~とかは使えません。 > # また | によるパイプも不可です。 > > これにより、sjisだろうがutf-8だろうが冒頭20行が表示される様になります。 -- yasuo mitsui thunderbird @ da.rmail.ne.jp From w2linux @ lapis.plala.or.jp Fri Feb 11 22:11:08 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Fri, 11 Feb 2005 22:11:08 +0900 Subject: [Cxplorer-devel 00214] Re: cxplorer-1.9.20050211 In-Reply-To: <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> Message-ID: <420CAEEC.7090908@lapis.plala.or.jp>  赤星です。 > つきましては、インストールの方法を今一度教えては頂けないでしょうか?  cxplorer2のインストールには、まずCxpファミリの共通ライブラリとなる予定 のlibcxpが必要です。(libcxpには、gtk+-2.4以降が必要。) http://sourceforge.jp/projects/cxplorer/files/?release_id=13302#13302  インストール方法は、多くのGNUアプリと一緒でconfigureから始まる一連の作 業を行います。  なお、configureで--prefixを指定せず、/usr/local以下にインストールした 場合は、/etc/ld.so.confの修正後、/sbin/liloを実行する他、pkg-configのた めに以下の環境変数を設定しexportする必要があります。(~/.bash_profile等) PKG_CONFIG_PATH='/usr/lib/pkgconfig:/usr/local/lib/pkgconfig'  以上の設定がうまくいっていれば、 $ pkg-config --cflags libcxp で必要なincludeディレクトリが表示されるはずです。  この他、libmagicが必要ですが、たいていはfileコマンドがインストールされ ていれば、インストールされていると思います。  後は、cxplorerも同様にconfigureから始まる作業でインストールできるはず です。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From thunderbird @ da.rmail.ne.jp Fri Feb 11 22:35:28 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Fri, 11 Feb 2005 22:35:28 +0900 Subject: [Cxplorer-devel 00215] Re: cxplorer-1.9.20050211 In-Reply-To: <420CAEEC.7090908@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> Message-ID: <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> chaliceです。かなり高度ですね。暫くやっていないのでw で/sbin/liloを実行するところですが、lilo入っていないのでどうしたものかと grubなブート環境なのでこの場合はどう対処します? PKG_CONFIG_PATHも書きこんでいますし、/etc/ld.so.confの/usr/local/libの書きこみも おえています。この後はどうしたらよろしいですか?もしや、Liloなブート環境でなければ だめとか? On Fri, 11 Feb 2005 22:11:08 +0900 Yasumichi Akahoshi wrote: >  インストール方法は、多くのGNUアプリと一緒でconfigureから始まる一連の作 > 業を行います。 >  なお、configureで--prefixを指定せず、/usr/local以下にインストールした > 場合は、/etc/ld.so.confの修正後、/sbin/liloを実行する他、pkg-configのた > めに以下の環境変数を設定しexportする必要があります。(~/.bash_profile等) > > PKG_CONFIG_PATH='/usr/lib/pkgconfig:/usr/local/lib/pkgconfig' -- yasuo mitsui thunderbird @ da.rmail.ne.jp From w2linux @ lapis.plala.or.jp Fri Feb 11 22:40:38 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Fri, 11 Feb 2005 22:40:38 +0900 Subject: [Cxplorer-devel 00216] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> Message-ID: <420CB5D6.9040607@lapis.plala.or.jp>  赤星です。大ボケかましました。 yasuo mitsui wrote: > で/sbin/liloを実行するところですが、lilo入っていないのでどうしたものかと /sbin/ldconfigの間違いです。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From thunderbird @ da.rmail.ne.jp Fri Feb 11 22:55:12 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Fri, 11 Feb 2005 22:55:12 +0900 Subject: [Cxplorer-devel 00217] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <420CB5D6.9040607@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> Message-ID: <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> chaliceです。 On Fri, 11 Feb 2005 22:40:38 +0900 Yasumichi Akahoshi wrote: > /sbin/ldconfigの間違いです。 うぃ、りょうかいです。 # /sbin/ldconfig $ pkg-config --cflags libcxp で、OKでしょうか?その後、cxplorerを $ ./configure && make # make install で、ということですね。 -- yasuo mitsui thunderbird @ da.rmail.ne.jp From w2linux @ lapis.plala.or.jp Fri Feb 11 23:00:38 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Fri, 11 Feb 2005 23:00:38 +0900 Subject: [Cxplorer-devel 00218] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> Message-ID: <420CBA86.5070501@lapis.plala.or.jp>  赤星です。 yasuo mitsui wrote: > # /sbin/ldconfig > $ pkg-config --cflags libcxp > > で、OKでしょうか?その後、cxplorerを > $ ./configure && make > # make install > で、ということですね。 >  それで問題ないと思います。もし、configureに失敗するようでしたら教えて ください。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From thunderbird @ da.rmail.ne.jp Sat Feb 12 19:39:47 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Sat, 12 Feb 2005 19:39:47 +0900 Subject: [Cxplorer-devel 00219] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <420CBA86.5070501@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> <420CBA86.5070501@lapis.plala.or.jp> Message-ID: <20050212193947.1462e1f3.thunderbird@da.rmail.ne.jp> chaliceです。不明ですがエラー出ますね。 On Fri, 11 Feb 2005 23:00:38 +0900 Yasumichi Akahoshi wrote: >  それで問題ないと思います。もし、configureに失敗するようでしたら教えて > ください。 $ cd libcxp-0.1.1 $ su # make install Making install in include make[1]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' make[2]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' make install-exec-hook make[3]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' mkdir -p -- . /usr/local/include/cxp make[3]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' test -z "/usr/local/include/cxp" || mkdir -p -- . "/usr/local/include/cxp" /usr/bin/install -c -m 644 'cxp.h' '/usr/local/include/cxp/cxp.h' /usr/bin/install -c -m 644 'cxp-profile.h' '/usr/local/include/cxp/cxp-profile.h' /usr/bin/install -c -m 644 'cxp-utils.h' '/usr/local/include/cxp/cxp-utils.h' /usr/bin/install -c -m 644 'cxp-gui.h' '/usr/local/include/cxp/cxp-gui.h' make[2]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' make[1]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/include' Making install in src make[1]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/src' make[2]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/src' test -z "/usr/local/lib" || mkdir -p -- . "/usr/local/lib" /bin/sh ../libtool --mode=install /usr/bin/install -c 'libcxp.la' '/usr/local/lib/libcxp.la' /usr/bin/install -c .libs/libcxp.so.0.0.0 /usr/local/lib/libcxp.so.0.0.0 (cd /usr/local/lib && rm -f libcxp.so.0 && ln -s libcxp.so.0.0.0 libcxp.so.0) (cd /usr/local/lib && rm -f libcxp.so && ln -s libcxp.so.0.0.0 libcxp.so) /usr/bin/install -c .libs/libcxp.lai /usr/local/lib/libcxp.la /usr/bin/install -c .libs/libcxp.a /usr/local/lib/libcxp.a ranlib /usr/local/lib/libcxp.a chmod 644 /usr/local/lib/libcxp.a PATH="$PATH:/sbin" ldconfig -n /usr/local/lib ---------------------------------------------------------------------- Libraries have been installed in: /usr/local/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[2]: `install-data-am' に対して行うべき事はありません。 make[2]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/src' make[1]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1/src' make[1]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1' make[2]: Entering directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1' make[2]: `install-exec-am' に対して行うべき事はありません。 test -z "/usr/local/lib/pkgconfig" || mkdir -p -- . "/usr/local/lib/pkgconfig" /usr/bin/install -c -m 644 'libcxp.pc' '/usr/local/lib/pkgconfig/libcxp.pc' make[2]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1' make[1]: Leaving directory `/home/oruga/RPM/SOURCES/libcxp-0.1.1' [root @ localhost libcxp-0.1.1]# ldconfig -n /usr/local/lib bash: ldconfig: command not found [root @ localhost libcxp-0.1.1]# cd /usr/lib [root @ localhost lib]# /sbin/ldconfig [root @ localhost lib]# exit exit $ cd .. $ cd cxplorer-1.9.20050211 $ ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking whether make sets $(MAKE)... yes checking for working aclocal-1.4... found checking for working autoconf... found checking for working automake-1.4... found checking for working autoheader... found checking for working makeinfo... found checking whether to enable maintainer-specific portions of Makefiles... no checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ANSI C... none needed checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ANSI C... (cached) none needed checking for gcc option to accept ANSI C... none needed checking how to run the C preprocessor... gcc -E checking for egrep... grep -E checking for ANSI C header files... yes checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking how to run the C++ preprocessor... g++ -E checking for g77... g77 checking whether we are using the GNU Fortran 77 compiler... yes checking whether g77 accepts -g... yes checking the maximum length of command line arguments... 32768 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking for correct ltmain.sh version... yes checking if gcc static flag works... yes checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for g77 option to produce PIC... -fPIC checking if g77 PIC flag -fPIC works... yes checking if g77 supports -c -o file.o... yes checking whether the g77 linker (/usr/bin/ld) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking for pkg-config... /usr/bin/pkg-config checking for libcxp... Package libcxp was not found in the pkg-config search path. Perhaps you should add the directory containing `libcxp.pc' to the PKG_CONFIG_PATH environment variable No package 'libcxp' found -- yasuo mitsui thunderbird @ da.rmail.ne.jp From thunderbird @ da.rmail.ne.jp Sat Feb 12 19:44:48 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Sat, 12 Feb 2005 19:44:48 +0900 Subject: [Cxplorer-devel 00220] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <420CBA86.5070501@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> <420CBA86.5070501@lapis.plala.or.jp> Message-ID: <20050212194448.1ba9cbb0.thunderbird@da.rmail.ne.jp> On Fri, 11 Feb 2005 23:00:38 +0900 Yasumichi Akahoshi wrote: >  それで問題ないと思います。もし、configureに失敗するようでしたら教えて > ください。 現在までにやったこと。 /usr/local/lib (/etc/ld.so.conf) PKG_CONFIG_PATH='/usr/lib/pkgconfig:/usr/local/lib/pkgconfig'を書きこみ保存(~/.bash_profile) ターミナルにて $ cd libcxp-0.1.1 $ ./configure && make # make install $ cd cxplorerr-1.9.20050211 $ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig $ ./configure ここまではOK # make install これですべてOKでした。 たぶん $ export PKG_CONFIG_PATH=/usr/lib/pkgconfig でも通ったかも知れませんが一応両方とも/usr/local以下にあるため $ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig にしてみました。 -- yasuo mitsui thunderbird @ da.rmail.ne.jp From w2linux @ lapis.plala.or.jp Sat Feb 12 21:13:26 2005 From: w2linux @ lapis.plala.or.jp (Yasumichi Akahoshi) Date: Sat, 12 Feb 2005 21:13:26 +0900 Subject: [Cxplorer-devel 00221] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <20050212194448.1ba9cbb0.thunderbird@da.rmail.ne.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> <420CBA86.5070501@lapis.plala.or.jp> <20050212194448.1ba9cbb0.thunderbird@da.rmail.ne.jp> Message-ID: <420DF2E6.1020507@lapis.plala.or.jp>  赤星です。結果的にインストールがうまく行った様なので良かったです。  私の書き方が悪かった様ですが…。 yasuo mitsui wrote: > PKG_CONFIG_PATH='/usr/lib/pkgconfig:/usr/local/lib/pkgconfig'を書きこみ保存(~/.bash_profile)  この場合、.bash_profileにさらに export $PKG_CONFIG_PATH という行が必要です。 # もちろん、反映させるためには、sourceコマンドを使う必要があります。  なお、PKG_CONFIG_PATHの値は環境によって書き換えてください。これは、pkg -configが、*.pcというファイル(ライブラリに関する情報がかかれた物)を探す 場所になります。 -- Yasumichi Akahoshi http://win2linux.sourceforge.jp/ http://vinedocs.sourceforge.jp/ http://cxplorer.sourceforge.jp/ From thunderbird @ da.rmail.ne.jp Sun Feb 13 11:09:41 2005 From: thunderbird @ da.rmail.ne.jp (yasuo mitsui) Date: Sun, 13 Feb 2005 11:09:41 +0900 Subject: [Cxplorer-devel 00222] =?iso-2022-jp?b?UmU6IGN4cGxvcmVyLTEuOS4y?= =?iso-2022-jp?b?MDA1MDIxMRskQiFKRHtANRsoQik=?= In-Reply-To: <420DF2E6.1020507@lapis.plala.or.jp> References: <420B958D.8090401@lapis.plala.or.jp> <20050211210935.33c8895b.thunderbird@da.rmail.ne.jp> <420CAEEC.7090908@lapis.plala.or.jp> <20050211223528.10b46fec.thunderbird@da.rmail.ne.jp> <420CB5D6.9040607@lapis.plala.or.jp> <20050211225512.32250e70.thunderbird@da.rmail.ne.jp> <420CBA86.5070501@lapis.plala.or.jp> <20050212194448.1ba9cbb0.thunderbird@da.rmail.ne.jp> <420DF2E6.1020507@lapis.plala.or.jp> Message-ID: <20050213110941.04ca2b1b.thunderbird@da.rmail.ne.jp> chaliceです。 On Sat, 12 Feb 2005 21:13:26 +0900 Yasumichi Akahoshi wrote: >  この場合、.bash_profileにさらに > > export $PKG_CONFIG_PATH > > という行が必要です。 > > # もちろん、反映させるためには、sourceコマンドを使う必要があります。 $ cd libcxp-0.1.1 $ ./configure && make # make install '/usr/local/lib'を書きこみ保存(/etc/ld.so.conf) export $PKG_CONFIG_PATH PKG_CONFIG_PATH='/usr/lib/pkgconfig:/usr/local/lib/pkgconfig'を書きこみ保存(~/.bash_profile) # /sbin/ldconfig してから $ cd cxplorerr-1.9.20050211 $ pkg-config --cflags libcxp $ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig $ ./configure $ make # make install # こんなかんじでしたでしょうか? # ちなみにフォーラムは、日本語圏の人が確認するのでスクリーンショットをあげておいたほうがいいかもしれません。ビジュアルから興味を持つ人が多いようなので:-) -- yasuo mitsui thunderbird @ da.rmail.ne.jp