|
List Info
Thread: opensc not building
|
|
| opensc not building |

|
2008-03-09 04:53:08 |
MKDIR_P is used but never defined on my system (debian
etch).
can someone fix this? why not use "mkdir -p",
seems pretty portable to me?
Regards, Andreas
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: opensc not building |

|
2008-03-09 06:48:39 |
Hi!
I added AC_PROG_MKDIR_P, please recheck.
You use MKDIR_P as it may be implemented by mkdir or
install.
Thanks!
Alon.
On 3/9/08, Andreas Jellinghaus <aj dungeon.inka.de> wrote:
> MKDIR_P is used but never defined on my system (debian
etch).
>
> can someone fix this? why not use "mkdir
-p", seems pretty portable to me?
>
> Regards, Andreas
> _______________________________________________
> opensc-devel mailing list
> opensc-devel lists.opensc-project.org
> http://www.opensc-project.org/mailman/listinfo/opensc
-devel
>
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: opensc not building |

|
2008-03-10 01:44:02 |
Am Sonntag, 9. März 2008 12:48:39 schrieb Alon Bar-Lev:
> Hi!
>
> I added AC_PROG_MKDIR_P, please recheck.
>
> You use MKDIR_P as it may be implemented by mkdir or
install.
doesn't help, the Makefile (and .in) don't define MKDIR_P :(
ah, me stupid. they have mkdir_p ...
fixing it ... Andreas
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel |
|
| Re: opensc not building |

|
2008-03-10 02:07:55 |
On 3/10/08, Andreas Jellinghaus <aj dungeon.inka.de> wrote:
> doesn't help, the Makefile (and .in) don't define
MKDIR_P :(
>
> ah, me stupid. they have mkdir_p ...
>
> fixing it ... Andreas
>
I got them both!
Which autoconf/automake versions do you use?
From autoconf, notice that MKDIR_P should be used.
— Macro: AC_PROG_MKDIR_P
Set output variable MKDIR_P to a program that ensures that
for each
argument, a directory named by this argument exists,
creating it and
its parent directories if needed, and without race
conditions when two
instances of the program attempt to make the same directory
at nearly
the same time.
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel |
|
| Re: opensc not building |

|
2008-03-10 04:02:12 |
On Mon, Mar 10, 2008 at 8:07 AM, Alon Bar-Lev
<alon.barlev gmail.com> wrote:
> On 3/10/08, Andreas Jellinghaus <aj dungeon.inka.de> wrote:
> > doesn't help, the Makefile (and .in) don't define
MKDIR_P :(
> >
> > ah, me stupid. they have mkdir_p ...
> >
> > fixing it ... Andreas
> >
>
> I got them both!
> Which autoconf/automake versions do you use?
>
> From autoconf, notice that MKDIR_P should be used.
>
> — Macro: AC_PROG_MKDIR_P
>
> Set output variable MKDIR_P to a program that ensures
that for each
> argument, a directory named by this argument exists,
creating it and
> its parent directories if needed, and without race
conditions when two
> instances of the program attempt to make the same
directory at nearly
> the same time.
My /usr/share/aclocal-1.10/mkdirp.m4 contains:
dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now
use MKDIR_P,
dnl while keeping a definition of mkdir_p for backward
compatibility.
dnl MKDIR_P is magic: AC_OUTPUT adjusts its value for
each Makefile.
dnl However we cannot define mkdir_p as $(MKDIR_P) for the
sake of
dnl Makefile.ins that do not define MKDIR_P, so we do our
own
dnl adjustment using top_builddir (which is defined more
often than
dnl MKDIR_P).
So the correct answer is MKDIR_P and not mkdir_p.
Andreas, you should upgrade your automake to version 1.10.
This version if available in Debian stable.
Can you also revert change 3415 [1]?
Regards,
[1] http://www.opensc-project.org/piper
mail/opensc-commits/2008-March/006720.html
--
Dr. Ludovic Rousseau
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: opensc not building |

|
2008-03-10 11:52:04 |
Am Montag, 10. März 2008 10:02:12 schrieb Ludovic Rousseau:
> Andreas, you should upgrade your automake to version
1.10.
> This version if available in Debian stable.
ok, but now openct now longer compiles.
what do I need to change in doc/Makefile.am:
doc/Makefile.am:8: shell ls $(srcdir: non-POSIX variable
name
doc/Makefile.am:8: (probably a GNU make extension)
etc/Makefile.am:35: `%'-style pattern rules are a GNU make
extension
HTML= $(shell ls $(srcdir)/*.html $(srcdir)/*.css
$(srcdir)/api/*)
I like this hack: the update script downloads all wiki
pages, converts them to
html, but I don't need to edit the makefile. can I keep this
functionality
somehow?
> Can you also revert change 3415 [1]?
done, and automake dependency on 1.10 set while doing that.
Regards, Andreas
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel
|
|
| Re: opensc not building |

|
2008-03-10 13:18:41 |
On 3/10/08, Andreas Jellinghaus <aj dungeon.inka.de> wrote:
> Am Montag, 10. März 2008 10:02:12 schrieb Ludovic
Rousseau:
>
> > Andreas, you should upgrade your automake to
version 1.10.
> > This version if available in Debian stable.
>
>
> ok, but now openct now longer compiles.
> what do I need to change in doc/Makefile.am:
> doc/Makefile.am:8: shell ls $(srcdir: non-POSIX
variable name
> doc/Makefile.am:8: (probably a GNU make extension)
> etc/Makefile.am:35: `%'-style pattern rules are a GNU
make extension
>
> HTML= $(shell ls $(srcdir)/*.html $(srcdir)/*.css
$(srcdir)/api/*)
>
> I like this hack: the update script downloads all wiki
pages, converts them to
> html, but I don't need to edit the makefile. can I
keep this functionality
> somehow?
I will fix this.
I also made dependency of >=autoconf-2.60 and removed
hacks.
Alon.
_______________________________________________
opensc-devel mailing list
opensc-devel lists.opensc-project.org
http://www.opensc-project.org/mailman/listinfo/opensc
-devel |
|
[1-7]
|
|
|
about | contact Other archives ( Real Estate discussion Medical topics )
|