Author Topic: Does Debian Testing have an incorrect dependency?  (Read 4758 times)

Offline kkruecke

  • Newbie
  • *
  • Posts: 2
Does Debian Testing have an incorrect dependency?
« on: February 07, 2008, 02:17:48 PM »
I am running lighttpd instead of apache and using php5-cgi (under fastcgi) instead of php5.  According to http://packages.debian.org/lenny/roundcube-core, roundcube-core depends upon php5. But shouldn't this be "php5 | php5-cgi", that is, php5 OR php5-cgi?

Offline evilbunny

  • Jr. Member
  • **
  • Posts: 13
Re: Does Debian Testing have an incorrect dependency?
« Reply #1 on: February 13, 2008, 05:53:50 AM »
Quote from: kkruecke
I am running lighttpd instead of apache and using php5-cgi (under fastcgi) instead of php5. According to http://packages.debian.org/lenny/roundcube-core, roundcube-core depends upon php5. But shouldn't this be "php5 | php5-cgi", that is, php5 OR php5-cgi?

php5 is a meta package, according to apt-cache show php5 | grep Depends

Depends: libapache2-mod-php5 (>= 5.2.4-2ubuntu4) | php5-cgi (>= 5.2.4-2ubuntu4), php5-common (>= 5.2.4-2ubuntu4)

So it doesn't look like any changes need to be made.

Offline kkruecke

  • Newbie
  • *
  • Posts: 2
Re: Does Debian Testing have an incorrect dependency?
« Reply #2 on: February 13, 2008, 11:54:02 AM »
Thanks for the clarification.