|
|
便利なツール Emacs らくらく 入門 ![]() |
|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
||||||||||||||||||||||||||||||||||||||||||||||||
2021年11月03日(水) 旧暦 [n年日記] [更新:"2004/08/09 23:43:33"]#1 [dvipdfx]dvipdfmx example.dvi example.dvi -> example.pdf [1 kpathsea: Running mktexpk --mfmode / --bdpi 600 --mag 0+555/600 --dpi 555 rml /usr/pkg/bin/mktexpk: gsftopk: not found mktexpk: don't know how to create bitmap font for rml. mktexpk: perhaps rml is missing from the map file. kpathsea: Appending font creation commands to missfont.log. dvipdfmx:warning: Could not locate a virtual/physical font for TFM "rml". dvipdfmx:warning: >> There are no valid font mapping entry for this font. dvipdfmx:warning: >> Font file name "rml" was assumed but failed to locate that font. dvipdfmx:fatal: Cannot proceed without .vf or "physical" font for PDF output... No output PDF file written.uncomment %f cid-x.map then dvipdfmx example-J.dvi example-J.dvi -> example-J.pdf [1 dvipdfmx:warning: Could not read encoding file: H dvipdfmx:warning: Could not locate a virtual/physical font for TFM "rml". dvipdfmx:warning: >> This font is mapped to a physical font "Ryumin-Light". dvipdfmx:warning: >> Please check if kpathsea library can find this font: Ryumin-Light dvipdfmx:fatal: Cannot proceed without .vf or "physical" font for PDF output...Good one has followins lines. Bad one is practically empty. CF-SX2-252@makoto 01:33:16/211104(..git-work/F7000s-certify)% cat /var/lib/texmf/fonts/map/dvipdfmx/updmap/kanjix.map % /var/lib/texmf/fonts/map/dvipdfmx/updmap/kanjix.map: % maintained by updmap[-sys] (multi). % Don't change this file directly. Use updmap[-sys] instead. % See the updmap documentation. % A log of the run that created this file is available here: % /var/lib/texmf/web2c/updmap.log gbm 2004-H HaranoAjiGothic-Medium.otf gbmv 2004-V HaranoAjiGothic-Medium.otf rml 2004-H HaranoAjiMincho-Regular.otf rmlv 2004-V HaranoAjiMincho-Regular.otfThe file is installed by the package SX3@makoto 16:33:00/211103(..git-work/F7000s-certify)% makedbm -u /usr/pkg/pkgdb/pkgdb.byfile.db|grep kanjix.map /usr/pkg/share/texmf-dist/fonts/map/dvipdfmx/updmap/kanjix.map tex-updmap-map-2020Not really sure because of tex-cjk-gs-integrated related or not. ( つっこみ )
2019年11月03日(日) 旧暦 [n年日記] [更新:"2019/11/02 23:46:50"]#1 [pkgsrc] (Wanderlust) problem reading mail メールが読めなくなってChecking "%inbox!" Opening TLS connection to ‘imap.example.com’... Opening TLS connection with ‘gnutls-cli --x509cafile nil -p 993 imap.example.com’...failed Opening TLS connection with ‘gnutls-cli --x509cafile nil -p 993 imap.example.com --protocols ssl3’...failed Opening TLS connection to ‘imap.example.com’...failed Auto plugged off at imap.example.com:993
という訳で pkg_info の差分を表示する perl script を作って比べて見た #!/usr/pkg/bin/perl use strict; use Getopt::Std; our %ARGV; our %opts; sub ColorString($$){ my (%COLOR) = ( qw ( black 30 red 31 green 32 yellow 33 blue 34 pink 35 magenta 36 white 37 )); my($color) = shift; my($string) = shift; return sprintf("%c[%dm%s%c[0m", 0x1b, $COLOR{$color}, $string, 0x1b); } getopt('',\%opts); print STDERR sprintf("%4d <", __LINE__). (caller 0)[3]. '> '. $ARGV[0] .' '. $ARGV[1].' '. "\n"; my $FILEA = $ARGV[0]; my $FILEB = $ARGV[1]; if ($FILEB eq '') { print STDERR sprintf("%04d <", __LINE__). (caller 0)[3]. "> you need two filename\n"; die; } my (%LISTA, %LISTB, %WHOLE); # ------------------------------------------------------------------------------ open(FILEA, $FILEA) || die "problem opening file: $FILEA :$!\n"; while(<FILEA>){ if (/(\S+)-([0-9.]+(nb[0-9.]*){0,})/) { my $name = $1; my $version = $2; # print STDERR sprintf("%04d ", __LINE__). (caller 0)[3]. $name. ' ' . $version . "\n"; $LISTA{$name} = $version; $WHOLE{$name}++ } } close(FILEA); # ------------------------------------------------------------------------------ open(FILEB, $FILEB) || die "problem opening file: $FILEB :$!\n"; while(<FILEB>){ if (/(\S+)-([0-9.]+(nb[0-9.]*){0,})/) { my $name = $1; my $version = $2; # print STDERR sprintf("%04d ", __LINE__). (caller 0)[3]. $name. ' ' . $version . "\n"; $LISTB{$name} = $version; $WHOLE{$name}++ } } close(FILEB); # ----------------------------------------------------------------------------- foreach my $i (sort keys %WHOLE) { my $a = $LISTA{$i}; my $b = $LISTB{$i}; if ($a ne $b) { if ($a eq '') { $a = ColorString('red', sprintf("%20s", '('. $i. ')'));} if ($b eq '') { $b = ColorString('red', sprintf("%20s", '('. $i. ')'));} printf("%-25s\t %20s\t %20s\n", $i, $a, $b); } } __END__How-to-use: 使い方: at HOST B: pkg_info > /tmp/hostB at HOST A: pkg_info > /tmp/hostA scp HOST_B:/tmp/hostB /tmp perl this_script /tmp/hostA /tmp/hostB |less -RFound missing one as emacs-w3m. I've added it and resolved. I recently the work to fix the emacs-w3m-snapshot build problem.
emacs-w3m が欠けていたので、追加したら読めるようになった
( つっこみ )
2015年11月03日(火) 旧暦 [n年日記] [更新:"2015/11/02 23:15:12"]#1 [pkgsrc] libreoffice-5.0.2.2[build RES] ofahr S=/WRKOBJDIR/misc/libreoffice/work/libreoffice-5.0.2.2 && I=$S/instdir && W=$S/workdir && mkdir -p $W/ResTarget/ $W/ResTarget/ && RESPONSEFILE=`mktemp -t gbuild.XXXXXX` && echo "-r -p -lghr -fs=$W/ResTarget/ofahr.res -lip=$S/icon-themes/galaxy/svx/ofa -lip=$S/icon-themes/galaxy/svx/imglst/hr -lip=$S/icon-themes/galaxy/svx/imglst -lip=$S/icon-themes/galaxy/svx/res/hr -lip=$S/icon-themes/galaxy/svx/res -lip=$S/icon-themes/galaxy/svx -lip=$S/icon-themes/galaxy/res/hr -lip=$S/icon-themes/galaxy/res -subMODULE=$S/icon-themes/galaxy/ -subGLOBALRES=$S/icon-themes/galaxy/res -oil=$W/ResTarget/ $W/SrsTarget/svx/ofa.srs" > ${RESPONSEFILE} && LD_LIBRARY_PATH=${LD_LIBRARY_PATH:+$LD_LIBRARY_PATH:}"$I/program:$I/program" $W/LinkTarget/Executable/rsc @${RESPONSEFILE} && rm -f ${RESPONSEFILE} [build RES] ofahu Text[ cs ] = "Nelze ulo.it konfiguraci pohledu s ikonami."; ^ f640: "/WRKOBJDIR/misc/libreoffice/work/libreoffice-5.0.2.2/workdir/SrsTarget/svx/ofa.srs", line 11996: Error: syntax error f256: Error: !! 1 Error found!! ( つっこみ )
2013年11月03日(日) 旧暦 [n年日記] [更新:"2013/11/04 01:34:17"]#1 [pkgsrc] nios2-gcc (4.1) xgcc Segfaults at function callmodena@makoto 21:00:27/131103(..build/gcc)% gdb /export/git-work/nios2/build/./gcc/xgcc GNU gdb (GDB) 7.3.1 Copyright (C) 2011 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64--netbsd". For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>... Reading symbols from /export/git-work/nios2/build/gcc/xgcc...done. Breakpoint 1 at 0x403944: file ../../gcc-4.1/gcc/gcc.c, line 7055. Function "internal_error" not defined. Make breakpoint pending on future shared library load? (y or [n]) [answered N; input not from terminal] Breakpoint 2 at 0x401880 Breakpoint 3 at 0x401810 (gdb) pwd Working directory /export/git-work/nios2/build/gcc. (gdb) run -B/export/git-work/nios2/build/./gcc/ \ -B/usr/pkg/cross/nios2-elf/bin/ \ -B/usr/pkg/cross/nios2-elf/lib/ -isystem \ /usr/pkg/cross/nios2-elf/include -isystem \ /usr/pkg/cross/nios2-elf/sys-include -O2 -O2 -g -O2 -DIN_GCC \ -DCROSS_COMPILE -W -Wall -Wwrite-strings -Wstrict-prototypes \ -Wmissing-prototypes -Wold-style-definition -isystem ./include \ -I. -I. -I../../gcc-4.1/gcc \ -I../../gcc-4.1/gcc/. -I../../gcc-4.1/gcc/../include \ -I../../gcc-4.1/gcc/../libcpp/include -g0 \ -finhibit-size-directive -fno-inline-functions -fno-exceptions \ -fno-zero-initialized-in-bss -fno-unit-at-a-time \ -Dinhibit_libc \ -c ../../gcc-4.1/gcc/crtstuff.c -DCRT_BEGIN \ -o crtbegin.o Starting program: /export/git-work/nios2/build/gcc/xgcc -B/export/git-work/nios2/build/./gcc/ -B/usr/pkg/cross/nios2-elf/bin/ -B/usr/pkg/cross/nios2-elf/lib/ -isystem /usr/pkg/cross/nios2-elf/include -isystem /usr/pkg/cross/nios2-elf/sys-include -O2 -O2 -g -O2 -DIN_GCC -DCROSS_COMPILE -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -I. -Ip. -I../../gcc-4.1/gcc -I../../gcc-4.1/gcc/. -I../../gcc-4.1/gcc/../include -I../../gcc-4.1/gcc/../libcpp/include -g0 -finhibit-size-directive -fno-inline-functions -fno-exceptions -fno-zero-initialized-in-bss -fno-unit-at-a-time -Dinhibit_libc -c ../../gcc-4.1/gcc/crtstuff.c -DCRT_BEGIN -o crtbegin.o ../../gcc-4.1/gcc/crtstuff.c: In function 'frame_dummy': ../../gcc-4.1/gcc/crtstuff.c:323: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://gcc.gnu.org/bugs.html> for instructions. [Inferior 1 (process 5260) exited with code 01] (gdb) bt No stack. (gdb) @ source code is:
modena@makoto 21:09:03/131103(..build/gcc)% \
cat -n ../../gcc-4.1/gcc/crtstuff.c |sed -n 310,339p
310 #else /* !defined(FINI_SECTION_ASM_OP) */ 311 static func_ptr __do_global_dtors_aux_fini_array_entry[] 312 __attribute__ ((__unused__, section(".fini_array"))) 313 = { __do_global_dtors_aux }; 314 #endif /* !defined(FINI_SECTION_ASM_OP) */ 315 316 #if defined(USE_EH_FRAME_REGISTRY) || defined(JCR_SECTION_NAME) 317 /* Stick a call to __register_frame_info into the .init section. For some 318 reason calls with no arguments work more reliably in .init, so stick the 319 call in another function. */ 320 321 static void __attribute__((used)) 322 frame_dummy (void) 323 { 324 #ifdef USE_EH_FRAME_REGISTRY 325 static struct object object; 326 #ifdef CRT_GET_RFIB_DATA 327 void *tbase, *dbase; 328 tbase = 0; 329 CRT_GET_RFIB_DATA (dbase); 330 if (__register_frame_info_bases) 331 __register_frame_info_bases (__EH_FRAME_BEGIN__, &object, tbase, dbase); 332 #else 333 if (__register_frame_info) 334 __register_frame_info (__EH_FRAME_BEGIN__, &object); 335 #endif /* CRT_GET_RFIB_DATA */ 336 #endif /* USE_EH_FRAME_REGISTRY */ 337 #ifdef JCR_SECTION_NAME 338 if (__JCR_LIST__[0]) 339 {One possibility is this is the very first function call...
diff --git a/gcc-4.1/gcc/crtstuff.c b/gcc-4.1/gcc/crtstuff.c index a712e4e..a5885aa 100644 --- a/gcc-4.1/gcc/crtstuff.c +++ b/gcc-4.1/gcc/crtstuff.c @@ -317,7 +317,8 @@ static func_ptr __do_global_dtors_aux_fini_array_entry[] /* Stick a call to __register_frame_info into the .init section. For some reason calls with no arguments work more reliably in .init, so stick the call in another function. */ - +int tmp; +xxx; static void __attribute__((used)) frame_dummy (void) {You will get -o crtbegin.o ../../gcc-4.1/gcc/crtstuff.c:321: warning: data definition has no type or storage class ../../gcc-4.1/gcc/crtstuff.c:321: warning: type defaults to 'int' in declaration of 'xxx' ../../gcc-4.1/gcc/crtstuff.c: In function 'frame_dummy': ../../gcc-4.1/gcc/crtstuff.c:324: internal compiler error: Segmentation fault Please submit a full bug report, with preprocessed source if appropriate. See <URL:http://gcc.gnu.org/bugs.html> for instructions. gmake[2]: *** [crtbegin.o] Error 1looping somewhere below around nios2_use_reg_for_func: ../../gcc-4.1/gcc/config/nios2/nios2.c:383 +++ nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 0 nios2_compute_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:339 nios2_compute_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:354 type -> 1 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:366 1 nios2_use_reg_for_func: ../../gcc-4.1/gcc/config/nios2/nios2.c:383 +++ nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 1 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:366 1 nios2_adjust_call_address: ../../gcc-4.1/gcc/config/nios2/nios2.c:1932 nios2_adjust_call_address: ../../gcc-4.1/gcc/config/nios2/nios2.c:1932 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 2 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:366 1 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 3 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:366 1 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 4 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:366 1 nios2_current_func_type: ../../gcc-4.1/gcc/config/nios2/nios2.c:363 5Todays diff (including patches of wip/nios2-gcc/patches/) @ gen_pic_load_call_addr:
You will soon come across the function
gen_pic_load_call_addr.
This is not found in source code. It is generated *.c file
modena@makoto 23:27:53/131103(..build/gcc)% grep -nr gen_pic_load_call_addr *.c *.h insn-emit.c:2230:gen_pic_load_call_addr (rtx operand0 ATTRIBUTE_UNUSED, insn-output.c:5946: (insn_gen_fn) gen_pic_load_call_addr, insn-flags.h:411:extern rtx gen_pic_load_call_addr (rtx, rtx, rtx);modena@makoto 23:27:58/131103(..build/gcc)% view ./insn-emit.c 2228 /* ../../gcc-4.1/gcc/config/nios2/nios2.md:2988 */ 2229 rtx 2230 gen_pic_load_call_addr (rtx operand0 ATTRIBUTE_UNUSED, 2231 rtx operand1 ATTRIBUTE_UNUSED, 2232 rtx operand2 ATTRIBUTE_UNUSED) 2233 { 2234 return gen_rtx_PARALLEL (VOIDmode, gen_rtvec (2, 2235 gen_rtx_SET (VOIDmode, 2236 operand0, 2237 gen_rtx_UNSPEC (SImode, 2238 gen_rtvec (2, 2239 operand1, 2240 operand2), 2241 33)), 2242 gen_rtx_USE (VOIDmode, 2243 operand1))); 2244 }This part comes (as commented in line 2228) from gcc/config/nios2/nios2.md:2988. @ gcc/config/nios2/nios2.md:2988 (define_insn "pic_load_call_addr" 2989 [(set (match_operand:SI 0 "register_operand" "=r") 2990 (unspec:SI [(match_operand:SI 1 "register_operand" "r") 2991 (match_operand:SI 2 "" "mX")] UNSPEC_PIC_CALL_SYM)) 2992 (use (match_dup 1))] 2993 "flag_pic" 2994 "ldw\\t%0, %%call(%2)(%1)") ![]() @ picture for calling sequence:
(click to enlarge)
( つっこみ )
2008年11月03日(月) 旧暦 [n年日記] [更新:"2008/11/07 20:09:13"]#1 [無題] 初めての ETC (割引有)
最近良く高速道路の「松ヶ丘 -- 君津」を利用するようになったけれど、
ある日料金所で 「9/20 から割引開始」のような文字を見かけて、
気になっていた。それでクレジット会社の Web で、カードの方は
申込んでおき、装置も 10/20 に付けてもらってあった。
その時に、音で案内が出るやつがいいですか、それとも安いブザー式
の方がいいですかと聞かれ、音はうるさいですから、と安い方を選んで
いた。その後、でも、それだと、料金はどうやって分るのかな ?
クレジット会社の Web の請求明細を見るのかな、などと心配していた。
その 9/20 から開始された割引の方であるが、 高速道路の会社の Web を見ても、上記区間が割引になるような説明は (僕には見つからず) 「付けてはもらったが、多分役に立たない」と思っていた。
で、きょう、初めて通行して見た。何と出口で 「割引 650 円」と表示
されている。本来は 1,150 円なので、500 円も割引になっている。
何だ、表示が出るんだ、と心配もふっとんだ。
( つっこみ )
2007年11月03日(土) 旧暦 [n年日記] [更新:"2007/11/06 14:11:03"]#1 [無題] カメラのねじが外れてスピーカが救う![]() ![]() 幸いなことに、裸で持っていた訳ではなかったので、ゆるんで外れて、 その容物にとどまり、その上、スピーカの磁石に吸い寄せられて、助けを 求めていたという訳だ。本当に助かった。時々増じめが必要なのだろうか ? カメラついでにちょっと不思議に思っていること。 exif を使って、 撮った写真のデータ を見ると、例えばOrientation |left - bottomのような項目があって、これは縦にして撮ったものだということが分る。 この機能は、付いているカメラと、そうでないものがあって、 人からいただいた *.jpeg 形式だと、(かなり高そうなカメラでも) 情報が取出せない (常に下記のように表示だけの) 場合がある。 Orientation |top - left買う時に、その機能があるかどうか確めてはいないし、 Canon IXY Digital 50 の画面を見ても、その機能は書いていない気がする。 これを気にする人は皆無という訳なのだろうか ? そう言えば、iPhoto は、これを見ている気がする。 ( つっこみ )
2005年11月03日(木) 旧暦 [n年日記] [更新:"2005/11/04 01:11:57"]#3 [Abuse][spam] (spam) 最近はこんなのもあるakgz.com -> ns1.dufpv.netpsvv と同様 2005/10/05 登録分らしい (現在調査中)。 ( つっこみ )
#2 [機械] NIC が Machine Check から無反応に
tlp0 として使っていた digital 印の 21140-AF がどうも
死んでしまったようだ。
CentreCOM LA100-PCI-T V2 という刻印のあるもの。
trap 200 とか言っているので何かな、変だなと思いながら、
何回か起動していたら、
そのうちに全く見えなくなってしまった。
寝ようと思っていたところに、とんでもない修理
(単なる交換だけれど)。
( つっこみ )
#1 [Security][pkgsrc] php を 4.4.1 に入替え
次の powerpc/3.99.9 用のもの
を pkg_add
39644 Nov 3 22:16 php-pgsql-4.4.1.tgz 23651 Nov 3 21:40 php-mysql-4.4.1.tgz 1706798 Nov 3 20:54 ap-php-4.4.1nb2.tgz 3658944 Nov 3 20:48 php-4.4.1nb1.tgzmysql は今回は実は関係ないが、ついでに 9604307 Nov 3 21:36 mysql-server-4.1.15.tgz 4433971 Nov 3 21:15 mysql-client-4.1.15.tgz ( つっこみ )
2002年11月03日(日) 旧暦 [n年日記]#2 [NetBSD] /usr/pkgsrc で make package
をやって見ているが、/usr 700 MB ではうまく行かない。
(のに後で気が付く)
( つっこみ )
#1 [無題] 館山方面8:50 出発 9:51 みんなみの里 ("H 圏外) 10:10 同出発 畑の八百屋さん ("H 圏外) 知人宅 おどや まぐろの大将 JUSCO 三芳村道の駅 ("H 圏外) 18:00 帰着道がいつになく混んでいた。 ( つっこみ )
2001年11月03日(土) 旧暦 [n年日記]#3 [Namazu] not acceptable
って索いたら「不正な検索式です」になってしまった。
(それはそうだ) "not acceptable" なら大丈夫 ( つっこみ )
#2 [Apache] 406 Not AcceptableNot Acceptable An appropriate representation of the requested resource /OHP/OHP could not be found on this server. Available variants: OHP.cgi , type text/plain, encoding (with Apache/1.3.20 Server at u.ki.nu Port 80また出たぁという感じ @ Content-Encoding: (with:
って何だろう ?
makoto@harry 16:47:38/011103(...htdocs/OHP)# telnet localhost 80 Trying ::1... Connected to localhost. Escape character is '^]'. GET /OHP/O.cgi HTTP 1.1 HTTP/1.1 200 OK Date: Sat, 03 Nov 2001 16:48:07 GMT Server: Apache/1.3.22 (Unix) Content-Encoding: (with Last-Modified: Sat, 03 Nov 2001 16:47:37 GMT Connection: close Content-Type: text/html; charset=iso-2022-jp Hellow<br> Connection closed by foreign host. ( つっこみ )
#1 [NetBSD] New iBook and IDE driver
新しい(と言っても 2001/08 時点の話) iBook は 1.15 以降
sys/arch/macppc/dev/wdc_obio.c
が必要。
ということは 2001/08/02 以降 ( つっこみ )
2000年11月03日(金) 旧暦 [n年日記]#2 [NetBSD] cvs update -P -d
して見る。
makoto@harry ■11:42:18/001103(...home6/NetBSD-cvs-mirror)> ls src/ makoto@harry ■11:42:36/001103(...home6/NetBSD-cvs-mirror)> cvs update -P -d ( つっこみ )
#1 [Jitterbug] など
Jitterbug
は他にも似たものがあるということで、少し人気が下っている
気もするが、(会社で)使い始めているので、行きがかり上、
少し見ている。
@ NetBSD:/usr/pkgsrc/www/ap-auth-ldap:
NetBSD/packages から、
/usr/pkgsrc/www/ap-auth-ldap
を入れたら、やっと LDAP の password 認証が
使えるようになって、
@ password 入力 と user name:
jitterbug の その password 認証の直後の画面で、
使用者名を選ぶところがあるが、これは作った人の意図通り
には動いていない気がして来て、
jitterbug.c とか utils.c を見ている。
@ /usr/pkgsrc/www/ap-auth-ldap:
試しに同じことをやって見ると、
root@nazuha 10:13:52/001103(...www/ap-auth-ldap)# make ===> Validating dependencies for ap-auth-ldap-1.4.2 => auth_ldap-1.4.2.tar.gz doesn't seem to exist on this system. => Attempting to fetch auth_ldap-1.4.2.tar.gz from http://www.rudedog.org/auth_ldap/. Requesting http://www.rudedog.org/auth_ldap/auth_ldap-1.4.2.tar.gz 100% |*******************************************************************| 29612 13.10 KB/s 00:00 ETA => Checksum OK for auth_ldap-1.4.2.tar.gz. ===> Extracting for ap-auth-ldap-1.4.2 ===> ap-auth-ldap-1.4.2 depends on file: /usr/pkg/bin/perl - not found ===> Verifying reinstall for /usr/pkg/bin/perl in ../../lang/perl5-base ===> Installing for perl-base-5.6.0 ===> perl-base-5.6.0 is already installed - perhaps an older version? *** If so, you may wish to ``pkg_delete perl-base-5.6.0'' and install *** this package again by ``make reinstall'' to upgrade it properly, *** or use ``make update'' to upgrade it and all of its dependencies. *** If you really wish to overwrite the old package of perl-base-5.6.0 *** without deleting it first, set the variable "FORCE_PKG_REGISTER" *** in your environment or the "make install" command line. *** Error code 1そう言えば、最近 mozilla-M18 を入れようとして、その時に perl も入れていた時 がする。 root@nazuha 10:14:01/001103(...www/ap-auth-ldap)# pkg_delete perl-base-5.6.0 pkg_delete: package `perl-base-5.6.0' is required by other packages: autoconf-2.13 perl-5.6.0nb3 p5-Data-Dumper-2.101 p5-Devel-DProf-19990108 p5-Devel-Peek-1.0001 p5-CGI-2.74 root@nazuha 10:17:14/001103(...www/ap-auth-ldap)#慣れていないとさっぱり分らないが、mozilla が新しい方の nb3 を要求した ということか。(mozilla はうまく行っていないので、消してしまっていいの だが) @ setenv FORCE_PKG_REGISTER + ap-auth-ldap:setenv FORCE_PKG_REGISTERしてからもう一度 make @ perl and NetBSD package:
僕が pkg が好きでないことの一つは(普通は僕は) perl を作る時には、いつも
./Configure -U d_setlocale -desしているのに、その -U d_setlocale を入れられないこと。(単に無知?) make が次のように終った ===> Registering installation for ap-auth-ldap-1.4.2 ap-auth-ldap-1.4.2 requires installed package apache-1.3.14.1 ap-auth-ldap-1.4.2 requires installed package openldap-1.2.11 root@nazuha 10:41:16/001103(...www/ap-auth-ldap)#何でも自動的に入れてくれると思っていたが。 実はこれで入っているようだ。→ たまに動いている iBook/NetBSD ( つっこみ )
|
最近の日記 2023年03月14日 ・unzip-6.0nb8 does not recognize password input while decrypting 2023年03月09日 ・ List of PR for sleeping by lid 2023年03月05日 ・1 λ whip 3.75 m 2023年02月04日 ・mount iso 2023年01月29日 ・CHROOT | ||