All of lore.kernel.org
 help / color / mirror / Atom feed
* Missing header files
@ 2001-01-04 16:38 Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office
  2001-01-04 17:08 ` Stephen Smalley
  0 siblings, 1 reply; 5+ messages in thread
From: Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office @ 2001-01-04 16:38 UTC (permalink / raw)
  To: selinux; +Cc: Harald.Von-Fellenberg

Hi

Thanks for opening up your Secure Linux work to the public - a great idea to
raise interest in trusted OS's in this time.

I am trying to compile, of course. However, I seem to lack a few header files:
namely the files 
slinux/utils/pwdb-0.60/include/pwdb/pwdb_{unix,shadow,common}.h, all of which 
are called from slinux/utils/pwdb-0.60/include/pwdb/pwdb_map.h
Or did I miss something else?

BTW I like the whitepapers - excellent collateral material!

Thanks and regards, Harald

**********************************************************
 Dr. Harald von Fellenberg  
 Senior Consultant          Technology Strategy Office
 Tel:    ++41 1 908 9230    Sun Microsystems (Schweiz) AG
 Fax:    ++41 1 908 9001    Javastr. 2 
 Mobile: ++41 79 349 0393   CH-8604 Volketswil
 mailto:harald.von-fellenberg@sun.com
**********************************************************


--
You have received this message because you are subscribed to the selinux list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Missing header files
  2001-01-04 16:38 Missing " Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office
@ 2001-01-04 17:08 ` Stephen Smalley
  0 siblings, 0 replies; 5+ messages in thread
From: Stephen Smalley @ 2001-01-04 17:08 UTC (permalink / raw)
  To: Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office
  Cc: selinux


On Thu, 4 Jan 2001, Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office wrote:

> I am trying to compile, of course. However, I seem to lack a few header files:
> namely the files 
> slinux/utils/pwdb-0.60/include/pwdb/pwdb_{unix,shadow,common}.h, all of which 
> are called from slinux/utils/pwdb-0.60/include/pwdb/pwdb_map.h
> Or did I miss something else?

On our RedHat 6.1 systems, the pwdb_{unix,shadow,common}.h header files
are picked up from the existing /usr/include/pwdb directory.  The only
modification that was made to the RedHat 6.1 pwdb package was to
change the location of the shadow password file in
libpwdb/pwdb/pwdb_config.h.  This is discussed in Section 3.3.3 of the
policy document.  See the discussion of the etc_auth_t type and the
shadow password file at the bottom of the first paragraph on page 8 of
that document.

--
Stephen D. Smalley, NAI Labs
sds@tislabs.com





--
You have received this message because you are subscribed to the selinux list.
If you no longer wish to subscribe, send mail to majordomo@tycho.nsa.gov with
the words "unsubscribe selinux" without quotes as the message.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* missing header files
@ 2024-08-26 12:38 Andreas Radke
  2024-08-26 15:38 ` Denis Kenzior
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Radke @ 2024-08-26 12:38 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 1067 bytes --]

Using "make install" target seems to not install some of the header
files. I've run into missing ell/useful.h for recent iwd build from git
master.

Can you clarify whether all these header files should be installed when
building a distribution package and please make the Makefile install
those that are expected to be present on the system.

cp ell/*.h "$pkgdir"/usr/include/ell/ shows these additional files now:

/usr/include/ell/asn1-private.h
/usr/include/ell/cert-private.h
/usr/include/ell/dbus-private.h
/usr/include/ell/dhcp-private.h
/usr/include/ell/dhcp6-private.h
/usr/include/ell/ecc-private.h
/usr/include/ell/gvariant-private.h
/usr/include/ell/icmp6-private.h
/usr/include/ell/main-private.h
/usr/include/ell/missing.h
/usr/include/ell/net-private.h
/usr/include/ell/netlink-private.h
/usr/include/ell/pem-private.h
/usr/include/ell/private.h
/usr/include/ell/rtnl-private.h
/usr/include/ell/siphash-private.h
/usr/include/ell/time-private.h
/usr/include/ell/tls-private.h
 usr/include/ell/useful.h

-Andy
Arch Linux

[-- Attachment #2: Digitale Signatur von OpenPGP --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: missing header files
  2024-08-26 12:38 missing header files Andreas Radke
@ 2024-08-26 15:38 ` Denis Kenzior
  2024-08-26 16:39   ` Andreas Radke
  0 siblings, 1 reply; 5+ messages in thread
From: Denis Kenzior @ 2024-08-26 15:38 UTC (permalink / raw)
  To: Andreas Radke, ell

Hi Andreas,

On 8/26/24 7:38 AM, Andreas Radke wrote:
> Using "make install" target seems to not install some of the header
> files. I've run into missing ell/useful.h for recent iwd build from git
> master.

ell/useful.h and ell/asn1-private.h are special.  They're copied from the ell 
tree when iwd is built.  Even if using shared ell, you need to setup ell as 
described in the README

> 
> Can you clarify whether all these header files should be installed when
> building a distribution package and please make the Makefile install
> those that are expected to be present on the system.
> 

These files are included in the distribution package.
[denkenz@archdev iwd]$ tar -Jtvf iwd-2.19.tar.xz | grep useful
-rw-r--r-- denkenz/denkenz   1979 2024-08-16 10:31 iwd-2.19/ell/useful.h
[denkenz@archdev iwd]$ tar -Jtvf iwd-2.19.tar.xz | grep asn1
-rw-r--r-- denkenz/denkenz   4406 2024-08-16 10:31 iwd-2.19/ell/asn1-private.h

> cp ell/*.h "$pkgdir"/usr/include/ell/ shows these additional files now:
> 
> /usr/include/ell/asn1-private.h
> /usr/include/ell/cert-private.h
> /usr/include/ell/dbus-private.h
> /usr/include/ell/dhcp-private.h
> /usr/include/ell/dhcp6-private.h
> /usr/include/ell/ecc-private.h
> /usr/include/ell/gvariant-private.h
> /usr/include/ell/icmp6-private.h
> /usr/include/ell/main-private.h
> /usr/include/ell/missing.h
> /usr/include/ell/net-private.h
> /usr/include/ell/netlink-private.h
> /usr/include/ell/pem-private.h
> /usr/include/ell/private.h
> /usr/include/ell/rtnl-private.h
> /usr/include/ell/siphash-private.h
> /usr/include/ell/time-private.h
> /usr/include/ell/tls-private.h
>   usr/include/ell/useful.h

None of these files are to be installed by ell, they're not part of the public API.

Regards,
-Denis

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: missing header files
  2024-08-26 15:38 ` Denis Kenzior
@ 2024-08-26 16:39   ` Andreas Radke
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Radke @ 2024-08-26 16:39 UTC (permalink / raw)
  To: Denis Kenzior; +Cc: ell

[-- Attachment #1: Type: text/plain, Size: 1231 bytes --]

Am Mon, 26 Aug 2024 10:38:37 -0500
schrieb Denis Kenzior <denkenz@gmail.com>:

> Hi Andreas,
> 
> On 8/26/24 7:38 AM, Andreas Radke wrote:
>  [...]  
> 
> ell/useful.h and ell/asn1-private.h are special.  They're copied from
> the ell tree when iwd is built.  Even if using shared ell, you need
> to setup ell as described in the README
> 
>  [...]  
> 
> These files are included in the distribution package.
> [denkenz@archdev iwd]$ tar -Jtvf iwd-2.19.tar.xz | grep useful
> -rw-r--r-- denkenz/denkenz   1979 2024-08-16 10:31
> iwd-2.19/ell/useful.h [denkenz@archdev iwd]$ tar -Jtvf
> iwd-2.19.tar.xz | grep asn1 -rw-r--r-- denkenz/denkenz   4406
> 2024-08-16 10:31 iwd-2.19/ell/asn1-private.h
> 
>  [...]  
> 
> None of these files are to be installed by ell, they're not part of
> the public API.
> 
> Regards,
> -Denis
> 

Compiling is broken here when using --enable-external-ell with iwd git
master no matter if I put ell source along iwd as described in README
but succeeds with --disable-external-ell.

The README ist somewhat misleading here. When building from git and
placing ell into toplevel dir it's failing. A cp ell/ell into iwd/ is
required when building from git.

-Andy


[-- Attachment #2: Digitale Signatur von OpenPGP --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-08-26 16:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-26 12:38 missing header files Andreas Radke
2024-08-26 15:38 ` Denis Kenzior
2024-08-26 16:39   ` Andreas Radke
  -- strict thread matches above, loose matches on Subject: below --
2001-01-04 16:38 Missing " Harald von Fellenberg - Sun Switzerland Zurich - Technology Strategy Office
2001-01-04 17:08 ` Stephen Smalley

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.